From d23e1274303c54b3d7fc8de77eea37bb8fdaeaa3 Mon Sep 17 00:00:00 2001 From: real-zephex Date: Sun, 31 Mar 2024 17:32:48 +0530 Subject: fixes: minor css modifications, added basic information about the last read manga chapter (don't expect much out of it) --- src/app/manga/[title]/[id]/[read]/currentReading.jsx | 2 +- src/app/manga/[title]/[id]/[read]/download.jsx | 2 +- src/app/manga/[title]/[id]/[read]/page.jsx | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'src/app/manga/[title]/[id]/[read]') diff --git a/src/app/manga/[title]/[id]/[read]/currentReading.jsx b/src/app/manga/[title]/[id]/[read]/currentReading.jsx index c368f75..2db6d77 100644 --- a/src/app/manga/[title]/[id]/[read]/currentReading.jsx +++ b/src/app/manga/[title]/[id]/[read]/currentReading.jsx @@ -19,7 +19,7 @@ function CR(chapter, volume) {
{chapter && volume && (

- Vol {volume} Chapter {chapter} + Reading: Vol {volume} Chapter {chapter}

)}
diff --git a/src/app/manga/[title]/[id]/[read]/download.jsx b/src/app/manga/[title]/[id]/[read]/download.jsx index 7eb1e7e..e0badc9 100644 --- a/src/app/manga/[title]/[id]/[read]/download.jsx +++ b/src/app/manga/[title]/[id]/[read]/download.jsx @@ -8,7 +8,7 @@ export default function DownloadManga({ chapterId: id }) { href={`https://manga-downloader-7nca.onrender.com/download?id=${id}`} style={{ textDecoration: "none" }} > - diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx index e584ee2..eaaa94c 100644 --- a/src/app/manga/[title]/[id]/[read]/page.jsx +++ b/src/app/manga/[title]/[id]/[read]/page.jsx @@ -27,6 +27,7 @@ export default async function Read({ params }) {
+

Total pages: {images.length}

{images && images.map((item, index) => (
@@ -43,6 +44,7 @@ export default async function Read({ params }) {
))}
+ ); } -- cgit v1.2.3